home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / util / linux / tofrodos-1.1 / utility.h < prev    next >
C/C++ Source or Header  |  1999-09-11  |  572b  |  29 lines

  1. /*
  2.     utility.h    Utility functions.
  3.     Copyright (c) 1996 by Christopher S L Heng. All rights reserved.
  4.  
  5.     $Id: utility.h 1.1 1996/05/17 21:47:29 chris Exp $
  6. */
  7.  
  8. #if !defined(UTILITY_H_INCLUDED)
  9. #define    UTILITY_H_INCLUDED
  10.  
  11. #if defined(__cplusplus)
  12. extern "C" {
  13. #endif
  14.  
  15. /* function declarations */
  16. #if defined(__WATCOMC__)    /* errnomem() never returns */
  17. #pragma aux errnomem aborts
  18. #endif
  19. extern void errnomem ( int exitcode );
  20. extern void * xmalloc ( size_t len );
  21. extern char * xstrdup( const char * s );
  22.  
  23. #if defined(__cplusplus)
  24. }
  25. #endif
  26.  
  27.  
  28. #endif
  29.